home *** CD-ROM | disk | FTP | other *** search
- #pragma once
- /*****
- *
- * Quit.h
- *
- * This is a support file for "Grant's CGI Framework".
- * Please see the license agreement that accompanies the distribution package
- * for licensing details.
- *
- * Copyright ©1995,1996 by Grant Neufeld
- * grant@acm.com
- * http://arpp.carleton.ca/grant/
- *
- *****/
-
- /*** FUNCTION PROTOTYPES ***/
-
- void doQuitApp ( void );
- Boolean QuitPrepare ( Boolean );
- p_export void ForceQuit ( void );
-
- #if kCompileWithQuitOnLongIdle
- p_export void ResetQuitIdleTimer ( void );
- #else
- #define ResetQuitIdleTimer()
- #endif
-
-
- /*** EXTERNAL USER DEFINED FUNCTIONS ***/
-
- p_export Boolean CustomQuit ( Boolean );
-
- #if !(kCompileWithout_MY_Names)
- #define MyQuit CustomQuit
- #endif
-
-
- /***** EOF *****/
-